/* Pano2VR Default Embedded Stylsheet */
.ggskin {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: normal;
  }
  .ggmarkdown p,.ggmarkdown h1,.ggmarkdown  h2,.ggmarkdown h3,.ggmarkdown h4 {
    margin-top: 0px
  }
  .ggmarkdown {
    white-space:normal
  }

  /* My CSS Classes*/
  .myDDIN {
    font-family: "D-DIN";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    text-transform: capitalize;
  }

  .myDDINCondensed {
    font-family: "D-DIN Condensed";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    text-transform: capitalize;
  }

  .myDDINExp {
    font-family: "D-DIN Exp";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    text-transform: capitalize;
  }

  .myHelvetica {
    font-family: "Helvetica";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    text-transform: capitalize;
  }
  
  .myHelveticaCompressed {
    font-family: "Helvetica-Compressed";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    text-transform: capitalize;
  }
  
  .myHelveticaRounded {
    font-family: "Helvetica Rounded";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    text-transform: capitalize;
  }
  
  .myPulse {
    animation: my-pulse-animation 2s infinite;
  }
  
  @keyframes my-pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
  }